![]() |
PATH![]() |
When instantiating a Java runtime session, you can specify certain attributes using the JMRuntimeOptions mask.
enum JMRuntimeOptions {
eJManager2Defaults = 0,
eUseAppHeapOnly = (1 << 0),
eDisableJITC = (1 << 1),
eEnableDebugger = (1 << 2),
eDisableInternetConfig = (1 << 3),
eInhibitClassUnloading = (1 << 4),
eJManager1Compatible = (eDisableJITC | eDisableInternetConfig)
};
You can choose one of the two preset masks or specify your own, depending on your needs.